home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970104-19970326 / 000156_news@columbia.edu _Fri Jan 31 12:13:58 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id MAA01918
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 31 Jan 1997 12:13:57 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id MAA12204
  7.     for kermit.misc@watsun; Fri, 31 Jan 1997 12:13:56 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: ECHO of filename to be sent within script
  12. Date: 31 Jan 1997 17:13:55 GMT
  13. Organization: Columbia University
  14. Lines: 45
  15. Message-ID: <5ct98j$gif$1@apakabar.cc.columbia.edu>
  16. References: <5ckq5k$kg4@morgan.vf.lmco.com> <5cntcd$ils$1@apakabar.cc.columbia.edu> <5csfnb$7kg@morgan.vf.lmco.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:6506
  19.  
  20. In article <5csfnb$7kg@morgan.vf.lmco.com>,
  21. Michael Groberg <groberg@slr.orl.mmc.com> wrote:
  22. : In article <5cntcd$ils$1@apakabar.cc.columbia.edu>,
  23. : fdc@watsun.cc.columbia.edu says...
  24. : >
  25. : >In article <5ckq5k$kg4@morgan.vf.lmco.com>,
  26. : >Michael Groberg <groberg@slr.orl.mmc.com> wrote:
  27. : >: Does anyone know of a way to echo the filename that is being sent to the
  28. : >: user. The "ECHO \%1" command doesn't work and I can't find an example
  29. : >: in any of the scripts or documents.
  30. : >: 
  31. : >Your question is a bit vague.  If Kermit is in remote mode, it can't echo
  32. : >anything because it is hidden behind the local Kermit's file transfer
  33. : >display.  If it is in local mode, you can see the name on the file transfer
  34. : >display anyway.
  35. : >
  36. : >Kermit 95 and C-Kermit have a variable \f(filespec) that contains the
  37. : >file specification used in the most recent file-transfer command.
  38. : >
  39. : >If you need the filename to be in a certain variable, you can define a
  40. : >macro for this, like:
  41. : >
  42. : >  define mysend echo sending \%1, send \%1, end \v(status)
  43. : Unfortunately, with Kermit 3.14, the "echo \%1" does not echo anything except
  44. : a blank line.
  45. :
  46. You mean, when you use a macro like the one above?  This works here -- but
  47. of course you need to "set file display none" or somesuch, otherwise the file
  48. transfer display will pop up right away and clear the info off your screen.
  49.  
  50. : I am using Kermit for file transfer only, and once I 
  51. : successfully complete the transfer I want to copy the file to another 
  52. : directory, and then delete it from the original. So far I have not found
  53. : a way to determine what file is passed to kermit on the command line.
  54. Then let's forget about the variables, macros, and such.  MS-DOS Kermit 3.15
  55. does this for you automatically if you use the MOVE command instead of the
  56. SEND command.  MOVE works like SEND, except it deletes the original file if
  57. and only if it is sent successfully.  It works with file groups (wildcards)
  58. too.  MS-DOS Kermit 3.15 is in the final stages of Beta:
  59.  
  60.   ftp://kermit.columbia.edu/kermit/test/bin/msk315.zip
  61.  
  62. - Frank